home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Very Best of Atari Inside
/
The Very Best of Atari Inside 1.iso
/
mint
/
mntlib20
/
lib
/
abort.c
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-05-17
|
185 b
|
16 lines
/* ERS */
#include <signal.h>
#include <stdlib.h>
#include <unistd.h>
#ifndef SIGABRT
#define SIGABRT SIGIOT
#endif
__EXITING abort()
{
raise(SIGABRT);
exit(127);
}